home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000012_news@newsmaster….columbia.edu _Tue Dec 15 10:11:48 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA12542
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 15 Dec 1998 10:11:47 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA06464
  7.     for kermit.misc@watsun; Tue, 15 Dec 1998 10:11:47 -0500 (EST)
  8. Path: news.columbia.edu!panix!logbridge.uoregon.edu!xmission!news.cc.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: emacs config
  12. Message-ID: <YPbqOXW$eZzi@cc.usu.edu>
  13. Date: 13 Dec 98 16:44:04 MDT
  14. References: <36742E71.FAD3F77@inka.de>
  15. Organization: Utah State University
  16. Lines: 31
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:9644
  18.  
  19. In article <36742E71.FAD3F77@inka.de>, "Felix E. Klee" <felix.klee@inka.de> writes:
  20. > Hi,
  21. > I use Kermit 3.14 to connect to a remote LINUX machine. However
  22. > when I run emacs 20 some key combinations (page up, page down, 
  23. > home, end, etc.) do not work. They are set up correctly in .emacs 
  24. > and work when emacs is run in X locally on the remote machine. 
  25. > What do I have to do to make these keys work in emacs run in
  26. > kermit and where do I find information on that topic?
  27. > TIA,
  28. > Felix
  29. > Extract from my .emacs (all my key combinations are set 
  30. > up like this):
  31. > (define-key global-map [home] 'beginning-of-line)
  32. > (define-key global-map [end] 'end-of-line)
  33. > -- 
  34. > mailto:felix.klee@inka.de
  35. > http://sites.inka.de/sites/klee
  36. -------------
  37.     MS-DOS Kermit is emulating a terminal, typically a VT320. Your
  38. remote host needs to match that emulation or the key commands won't
  39. make sense on the receiving end. On the Linux side say  echo $TERM  to
  40. see what it thinks the emulation is. 
  41.     Joe D.